home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / ARMTEX / EXTRAS / TR2LATEX / tr2latex / h / maths < prev    next >
Text File  |  1992-04-27  |  940b  |  40 lines

  1. /*
  2. ** tr2latex - troff to LaTeX converter
  3. ** $Id: maths.h,v 2.2 1992/04/27 15:13:26 Christian_Engel Dist krischan $
  4. ** COPYRIGHT (C) 1987 Kamal Al-Yahya, 1991,1992 Christian Engel
  5. **
  6. ** Module: maths.h
  7. **
  8. ** This file contains a list of the words that have simple
  9. ** correspondence in the two languages.
  10. ** Do not put here words that require action (like sub).
  11. ** If the word is identical in the two languages (except for TeX's backslash),
  12. ** put it in simil.h
  13. */
  14.  
  15. struct math_equiv {
  16.     char *troff_symb, *tex_symb;
  17. } math[] = {
  18. /*    troff name        TeX name        */
  19.  
  20.     "~",            "\\ ",
  21.     "^",            "\\,",
  22.     "above",        "\\cr",
  23.     "ccol",            "\\matrix",
  24.     "cpile",        "\\matrix",
  25.     "fat",            "",
  26.     "grad",            "\\nabla",
  27.     "half",            "{1\\over 2}",
  28.     "inf",            "\\infty",
  29.     "inter",        "\\cap",
  30.     "lcol",            "\\matrix",
  31.     "lineup",        "",
  32.     "lpile",        "\\matrix",
  33.     "mark",            "",
  34.     "nothing",        "",
  35.     "pile",            "\\matrix",
  36.     "rcol",            "\\matrix",
  37.     "rpile",        "\\matrix",
  38.     "union",        "\\cup"
  39. };
  40.